100 |
How do I change the visual aspect for thumb parts in the scroll bars, using EBN
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExFileView.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oExFileView.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") oExFileView.Background(388,16777216 /*0x1000000*/) oExFileView.Background(389,33554432 /*0x2000000*/) oExFileView.Background(391,50331648 /*0x3000000*/) oExFileView.Background(260,16777216 /*0x1000000*/) oExFileView.Background(261,33554432 /*0x2000000*/) oExFileView.Background(263,50331648 /*0x3000000*/) oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
99 |
How do I change the visual aspect only for the thumb in the scroll bar, using EBN
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExFileView.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") oExFileView.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") oExFileView.Background(388,16777216 /*0x1000000*/) oExFileView.Background(389,33554432 /*0x2000000*/) oExFileView.Background(391,50331648 /*0x3000000*/) oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
98 |
How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Option(4,true) oExFileView.Refresh() |
97 |
How can I change the date format in the Modified column
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Option(2,"yyyyy ") oExFileView.Option(3,"hh:mm") oExFileView.Refresh() |
96 |
How can I change the date format in the Modified column
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Option(2,"ddd, MMM dd yy") oExFileView.Refresh() |
95 |
How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used
|
94 |
How can I change the "today" caption that's shown in the Modified column
|
93 |
Is there any way to rename a column
|
92 |
Is there any option to exclude folders that match a pattern
|
91 |
Is there any option to include only folders that match a pattern
|
90 |
How can I include files when folders are expanded
|
89 |
How do I get the file or folder from the cursor
|
88 |
How can I expand programatically a folder
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ExpandFolders = true oExFileView.Expand("WINNT") |
87 |
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ColumnFilterButton("Name",true) oExFileView.Description(2,"") oExFileView.Description(3,"") oExFileView.Description(4,"") oExFileView.Description(5,"") oExFileView.Description(6,"") |
86 |
How can I change the "Filter For" caption in the column's drop down filter window
|
85 |
How do I change the "All" caption in the drop down filter window
|
84 |
How do I sort a column
|
83 |
How do I change the font in the filter bar
|
82 |
How do I change the visual appearanceof the filter bar
|
81 |
How do I change the color in the filter bar
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ColumnFilterButton("Name",true) oExFileView.ColumnFilterType("Name",1) oExFileView.ColumnFilter("Name","*.exe|*.com|*.bat") oExFileView.ApplyFilter() oExFileView.FilterBarBackColor = RGB(255,0,0) |
80 |
How do I change the color in the filter bar
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ColumnFilterButton("Name",true) oExFileView.ColumnFilterType("Name",1) oExFileView.ColumnFilter("Name","*.exe|*.com|*.bat") oExFileView.ApplyFilter() oExFileView.FilterBarForeColor = RGB(255,0,0) |
79 |
How do I specify the height of the filter bar
|
78 |
How do I remove or clear the filter
|
77 |
How do I change the caption in the filter bar
|
76 |
How do I filter a column
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ColumnFilterButton("Name",true) oExFileView.ColumnFilterType("Name",1) oExFileView.ColumnFilter("Name","*.exe|*.com|*.bat") oExFileView.ApplyFilter() |
75 |
How can I enlarge the height of the drop down filter window
|
74 |
How do I remove or clear my own filters
|
73 |
How do I specify my own filters
|
72 |
How can I enlarge the width of the drop down filter window
|
71 |
How can I enlarge the width of the drop down filter window
|
70 |
How can I enable filtering the folders and files
|
69 |
How do I display in the Modified column, the number of days since the file or folder was changed
|
68 |
How do I stop programatically the searching
|
67 |
How do I search or find files
|
66 |
How can I expand or collapse a folder, when the user double clicks it
|
65 |
How can I change the default icon being displayed for parent folders
OleObject oExFileView oExFileView = ole_1.Object oExFileView.LoadIcon(oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234) oExFileView.IncludeParentIconKey = 1234 |
64 |
How can I show only folders
|
63 |
How can I show or hide the expand/collapse buttons
|
62 |
How can I show the lines at root
|
61 |
How can I show the lines between child and parents
|
60 |
Is there any option to add an expand or collapse (+/-) buttons left to each folder
|
59 |
How do I show or hide the first item that shows when I browse new folders
|
58 |
How do I enable or disable renaming the folders and files
|
57 |
How do I change the width of the columns
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
56 |
How do I change the width of the columns
|
55 |
How do I show or hide a column
|
54 |
How can I get the path of the browsed folder
|
53 |
The Change event is not fired. What can I do
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ChangeNotification = true |
52 |
How do I execute a command from the file's content menu (sample 1)
|
51 |
How do I change the width of the columns
|
50 |
How can I refresh automatically the control so it reflect the changes in the browsed folder
|
49 |
May I disable the control's content menu, that's displayed when the user does right click
|
48 |
How do I refresh the control
|
47 |
How do I enable single or multiple selection
|
46 |
Can I display only all execpts the *.exe and *.com files using wild characters
|
45 |
Can I display only *.exe and *.com files using wild characters
|
44 |
Can I change the folder being explored
|
43 |
Can I display only files
|
42 |
How can I change the default icon being displayed for specified folders
OleObject oExFileView,var_FileType oExFileView = ole_1.Object oExFileView.LoadIcon(oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234) var_FileType = oExFileView.FileTypes.Add("W*") var_FileType.Folder = true var_FileType.IconIndex = 1234 var_FileType.Bold = true var_FileType.Apply() |
41 |
How can I change the default icon being displayed for specified files
OleObject oExFileView,var_FileType oExFileView = ole_1.Object oExFileView.LoadIcon(oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234) var_FileType = oExFileView.FileTypes.Add("*.bat *.com *.exe") var_FileType.IconIndex = 1234 var_FileType.Apply() |
40 |
How can I change the default icon being displayed for files
OleObject oExFileView,var_FileType oExFileView = ole_1.Object oExFileView.LoadIcon(oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234) var_FileType = oExFileView.FileTypes.Add("*") var_FileType.IconIndex = 1234 var_FileType.Apply() |
39 |
How can I change the default icon being displayed for folders
OleObject oExFileView,var_FileType oExFileView = ole_1.Object oExFileView.LoadIcon(oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234) var_FileType = oExFileView.FileTypes.Add("*") var_FileType.Folder = true var_FileType.IconIndex = 1234 var_FileType.Apply() |
38 |
Does your control support partial check feature, so a parent item gets checked when all its child items are checked
|
37 |
Can I add a checkbox to each file or folder
|
36 |
How do I put a picture on the center of the control
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 17 |
35 |
How do I resize/stretch a picture on the control's background
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 49 |
34 |
How do I put a picture on the control's center right bottom side
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 34 |
33 |
How do I put a picture on the control's center left bottom side
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 32 |
32 |
How do I put a picture on the control's center top side
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 1 |
31 |
How do I put a picture on the control's right top corner
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 2 |
30 |
How do I put a picture on the control's left top corner
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Picture = oExFileView.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExFileView.PictureDisplay = 0 |
29 |
How do I put a picture on the control's background
|
28 |
How do I change the control's border, using your EBN files
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\hot.ebn") oExFileView.Appearance = 16777216 /*0x1000000 | */ oExFileView.BackColor = RGB(255,255,255) |
27 |
How do I remove the control's border
|
26 |
How can I change the foreground color of the control's header
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ForeColorHeader = RGB(255,0,0) |
25 |
How can I change the background color of the control's header
OleObject oExFileView oExFileView = ole_1.Object oExFileView.BackColorHeader = RGB(255,255,0) oExFileView.HeaderAppearance = 1 |
24 |
How can I change the visual appearance of the header, using EBN files
|
23 |
How can I change the header's appearance
|
22 |
How do I disable the control
|
21 |
How do I change the visual appearance effect for the selected item, using EBN
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExFileView.SelBackColor = 16777216 /*0x1000000*/ oExFileView.SelForeColor = RGB(0,0,0) |
20 |
How do I change the colors for the selected item
OleObject oExFileView oExFileView = ole_1.Object oExFileView.SelBackColor = RGB(0,0,0) |
19 |
How can I change the control's font
|
18 |
How do I show or hide the control's header bar
|
17 |
How do I change the control's foreground color
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ForeColor = RGB(120,120,120) |
16 |
How do I change the control's background color
OleObject oExFileView oExFileView = ole_1.Object oExFileView.BackColor = RGB(200,200,200) |
15 |
How do I prevent painting the control while multiple changes occur
OleObject oExFileView oExFileView = ole_1.Object oExFileView.BeginUpdate() oExFileView.ForeColor = RGB(255,0,0) oExFileView.BackColor = RGB(255,255,255) oExFileView.EndUpdate() |
14 |
How do I change the height of the items
OleObject oExFileView oExFileView = ole_1.Object oExFileView.DefaultItemHeight = 13 oExFileView.Refresh() |
13 |
How do I enable resizing the columns at runtime
|
12 |
How do I call your x-script language
|
11 |
How do I call your x-script language
|
10 |
Can I change the order of the buttons in the scroll bar
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ScrollOrderParts(1,"t,l,r") oExFileView.ScrollOrderParts(0,"t,l,r") oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
9 |
The thumb size seems to be very small. Can I make it bigger
|
8 |
How do I enlarge or change the size of the control's scrollbars
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ScrollHeight = 18 oExFileView.ScrollWidth = 18 oExFileView.ScrollButtonWidth = 18 oExFileView.ScrollButtonHeight = 18 oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
7 |
How do I assign a tooltip to a scrollbar
|
6 |
I need to add a button in the scroll bar. Is this possible
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ScrollPartVisible(1,32768,true) oExFileView.ScrollPartCaption(1,32768,"1") oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
5 |
Can I display an additional buttons in the scroll bar
OleObject oExFileView oExFileView = ole_1.Object oExFileView.ScrollPartVisible(1,32768,true) oExFileView.ScrollPartVisible(1,16384,true) oExFileView.ScrollPartVisible(1,1,true) oExFileView.ScrollPartVisible(1,2,true) oExFileView.ColumnAutoResize = false oExFileView.ColumnWidth("Name",256) |
4 |
Is there any option to highligth the column from the cursor - point
OleObject oExFileView oExFileView = ole_1.Object oExFileView.Background(32,RGB(255,255,255)) |
3 |
Is there any option to highligth the column from the cursor - point
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExFileView.Background(32,16777216 /*0x1000000*/) |
2 |
How do I change the visual aspect of the close button in the filter bar, using EBN
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExFileView.Background(1,16777216 /*0x1000000*/) oExFileView.ColumnFilterButton("Name",true) oExFileView.ColumnFilterType("Name",1) oExFileView.ColumnFilter("Name","*.exe") oExFileView.ApplyFilter() |
1 |
How do I change the visual aspect of the drop down filter button, using EBN
OleObject oExFileView oExFileView = ole_1.Object oExFileView.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExFileView.Background(0,16777216 /*0x1000000*/) oExFileView.ColumnFilterButton("Name",true) |